#depegraph-wp-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#depegraph-wp-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    background: url('img/bg-image.jpg') center center no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 600px) {
    #depegraph-wp-popup {
        padding: 10px;
        width: 80%;
    }
}

#depegraph-wp-popup:after {
    content: "";
    display: block;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

#depegraph-wp-popup-content {
    text-align: center;
    color: #fff;
}

#depegraph-wp-popup-content h2, #depegraph-wp-popup-content p {
    color: #fff;
    margin: 20px 0;
}

#depegraph-wp-popup-button-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

#depegraph-wp-popup input[type="text"],
#depegraph-wp-popup input[type="email"],
#depegraph-wp-popup button {
    font-size: 1em;
    margin: 10px 0;
    padding: 14px;
    width: 90%;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
}

#depegraph-wp-popup button {
    background-color: #2ab2d7;
    color: #fff;
    cursor: pointer;
}

#depegraph-wp-popup-cancel {
    background-color: #2d4045 !important;
}

#depegraph-wp-popup button:hover {
    background-color: #10c3f3;
}

#depegraph-wp-popup-cancel:hover {
    background-color: #1d2528 !important;
}